home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Word / I / InfoMac5.1 < prev    next >
Encoding:
Text File  |  1987-06-09  |  24.2 KB  |  630 lines  |  [TEXT/MACA]

  1. INFO-MAC Digest           Sunday, 7 Jun 1987      Volume 5 : Issue 100
  2.  
  3. Today's Topics:
  4.    RE:  HELP WANTED - Catching all keyDown events in a desk accessory.
  5.          Poison Folders, MacII monitor gripes, weird SE keyboard
  6.                  Is there a patch for FKey 3 under 4.1?
  7.                                  MacIII?
  8.                             Juggler 1.0D ????
  9.  menu maze: public domain puzzle, with source, using hierarchical menus
  10.                  paintps.shar update for LaserWriter 4.0
  11.                      re:  Any biologists out there?
  12.                           Re: Boxes in word3.0
  13.                              re: XP40 noises
  14.                      Sys 4.1 and Hyperdrive (V5 #98)
  15.                            Mac II Benchmarks?
  16.                    Tektronix T4010 plots to PostScript
  17.                             hard disks on Mac
  18.                         PageMaker 2.0 (oh yes...)
  19.                     demo of SuitCase and PowerStation
  20.                         Usenet Mac Digest V3 #42
  21.                         Usenet Mac Digest V3 #43
  22.  
  23.  
  24. ----------------------------------------------------------------------
  25.  
  26. Date: Sat, 6 Jun 87 09:56:31 CDT
  27. From: kkim%f.cs.uiuc.edu@a.cs.uiuc.edu
  28. Subject: RE:  HELP WANTED - Catching all keyDown events in a desk
  29. Subject: accessory.
  30.  
  31.     I am writing a Desk Accessory which transforms every input character.
  32. The transformation is affected by a previous character, a current char,
  33. Caps Lock key, shift key, option key, and command key.  My DA does *not
  34. have its own window*; it is running in the *background* and transformed
  35. chars will be passed to an application (e.g. MacWrite).
  36.  
  37.     My DA is working fairly well now.  The big problem is that ONLY SOME
  38. input chars do get transformed; however, there are other input chars which
  39. do not get transformed.  I will show you a skeleton of my DA in Lightspeed
  40. Pascal to give you a concrete idea.
  41.  
  42. procedure OpenRoutine;
  43. begin
  44.     dCtlStorage:=NewHandle(SizeOf(PrivateStorage));
  45.     dCtlFlags:=$6400; {DA can respond to control calls;}
  46.         {DA needs time for performing periodic actions;}
  47.         {DA will be locked in memory as soon as it is opened}
  48.     dCtlDelay:=0; {must be called as often as possible}
  49.     dCtlEMask:=keyDownMask;{meaningless?}
  50.     whenSaved:=0;{evtQWhen of the latest keyDown event processed by a DA}
  51. end;
  52.  
  53. procedure ControlRoutine;
  54. begin
  55. for counter:=1 to LIMIT do begin {LIMIT will be explained below}
  56.     evQHdrPtr:=GetEvQHdr; {get a pointer to the header of the event queue}
  57.     CurrElem:=evQHdrPtr^.qHead;
  58.     while (CurrElem <> nil) do
  59.         if (CurrElem^.evQElem.evtQWhen > whenSaved) then begin
  60.             {an event which has not been processed by a DA; do transformation}
  61.             CurrElem^.evQElem.evtQMessage:=transformedChar;
  62.             whenSaved:=CurrElem^.evQElem.evtQWhen;
  63.             end; {if}
  64.         end; {while}
  65.     end; {for counter}
  66. end;
  67.  
  68. procedure CloseRoutine;
  69. begin
  70.     disposHandle(dCtlStorage);
  71. end;
  72.  
  73.  
  74.     I tested my DA using MacWrite.  At first, LIMIT was 1 (i.e. no for loop).
  75. The result was that about 2/3 of input chars did not get transformed.
  76. The following table will help:
  77.  
  78. LIMIT            portion of input chars which did not get transformed
  79.   1              2/3
  80.  10              1/2
  81. 700              1/10
  82. 1000             1/15
  83. 2000             < 1/30
  84.  
  85.     When LIMIT was greater than about 500, some characters were lost if
  86. I typed fast (due to the maximum event queue size).  I guess that LIMIT
  87. should be set to 1 and some other mechanism must be adopted to get around
  88. the problem. Does Vertical Retrace Manager have anything to do with it?
  89.  
  90.     Could anybody give me clues/hints/comments as to how to CATCH ALL THE
  91. KEYDOWN EVENTS IN A DESK ACCESSORY AND TRANSFORM THEM?  Please e-mail to me
  92. since my site does not subscribe to info-mac.
  93.  
  94.     Thanks in advance.
  95.  
  96. Kyongsok KIM
  97.  
  98. Dept. of Computer Science; Univ. of Illinois at Urbana-Champaign
  99. arpanet/csnet: kkim@a.cs.uiuc.edu
  100. usenet/uucp  : {seismo, pur-ee, ihnp4}!uiucdcs!kkim
  101.  
  102. ------------------------------
  103.  
  104. Date: Thu, 4 Jun 87 23:21 CDT
  105. From: MKonar@HI-MULTICS.ARPA
  106. Subject: Poison Folders, MacII monitor gripes, weird SE keyboard
  107.  
  108. Three things:
  109.  
  110. 1) Last winter, I began running into problems like freezing mice after
  111. clicking on a particular folder.  I was using a Mac+ and HD20.  This had
  112. me totally bewildered.  I booted up off a floppy and replaced the System
  113. and Finder.  Every thing seemed to go okay for awhile.  A couple of days
  114. later BOINGO!  It happened again!  I went as far as accusing my little
  115. brother of doing some unauthorized System hacking and/or abuse.  After
  116. many episodes of this sort, the problem went away.  I don't know why.  A
  117. couple of days ago however, it ocurred to me that if one is developing
  118. software (as I was) and has the cache on (as I did), a wild memory
  119. reference by the software can accidentally write into the cache.  When
  120. the cache is finally written out to disk, you get whacko data.  Seems to
  121. me if this data happened to be associated with the DeskTop file, screwy
  122. things like poison folders could be the result.  Sound plausible?
  123.  
  124. 2) I dinked around with a MacII at our University the other day.  It
  125. must have been a pre-release (I hope it was) because it wasn't very hard
  126. to crash it.  I was running the program that shows the robot arm,
  127. Mandril, etc.  I think they call it ParisDemo.  Anyhow it had Apple's
  128. monochrome monitor which is made by Sony.  Now for some peculiar reason,
  129. Sony makes all their video tubes flat in the vertical direction.  The
  130. result is image distortion around the corners.  This may be fine for TV
  131. (I don't think so) but it drove me crazy to see the menu bar and window
  132. edges curve up (or down) around the edges of the sreen.  It just looks
  133. bad.  I think when I get a MacII, I'll forgo Apple's monitors and go for
  134. SuperMac's or some other non-Sony monitor.  Does this bug anyone else as
  135. much as it bugs me?  Since they first came out with the Mac, I always
  136. thought of Apple as a company that took great pride in the aesthetics as
  137. well as the technical quality (which should be a given) of their
  138. products.  Where has that pride gone?  Did it leave with Jobs?  I hope
  139. not.
  140.  
  141. 3) We got a MacSE some time ago that insisted on spraying dashes (-)
  142. right after booting up into the first text item it could, usually the
  143. title of the startup disk.  We fixed it by opening the keyboard and
  144. reseating all the chips (maybe it was only one) and the ADB connectors.
  145. I don't know if this problem might be related to the mouse problems I
  146. read about, but it might be worth a try if you don't mind voiding your
  147. warranty.
  148.  
  149. Over and out.
  150.  
  151. ------------------------------
  152.  
  153. Date: Fri, 05 Jun 1987 10:46 PDT
  154. From: GFA0009%CALSTATE.BITNET@wiscvm.wisc.edu
  155. Subject: Is there a patch for FKey 3 under 4.1?
  156.  
  157. Is there a patch available to allow FKey 3 to take pictures of the screen with
  158. menus down under System 4.1?  I tried using the patch I had for System 3.2, and
  159. it worked-- sort of.  The problem is that it would crash my RAM disk (Ram+) as
  160. it tried to load the System.  If I ran it off the diskette, it would take a
  161. snapshot with the menus down.  But it makes me nervous.
  162.  
  163. If anyone has a patch that works well for 4.1, I'd be very grateful for a copy.
  164. Since our mail system isn't interactive, I'd need to have it E-mailed to me or
  165. posted as hex code on Info-Mac.
  166.  
  167. Thanks in advance.
  168. Andre Lehre
  169. Geology Dept
  170. Humboldt State University
  171. GFA003O@CALSTATE.BITNET
  172.  
  173. ------------------------------
  174.  
  175. Date: Fri, 5 Jun 87 13:49 CDT
  176. From: MKonar@HI-MULTICS.ARPA
  177. Subject: MacIII?
  178.  
  179. Any one hear a rumour concerning a 68030 based Mac?  I believe the 68030
  180. has a Memory managment unit built in.  Its also supposed to have a 68882
  181. co-processor.
  182.  
  183. ------------------------------
  184.  
  185. Date: Mon, 1 Jun 87 08:23:23 edt
  186. From: bell@eniac.seas.upenn.edu (Mike Bell)
  187. Subject: Juggler 1.0D ????
  188.  
  189.     I'm sure that everyone has heard Juggler---the latest member of the
  190. Switcher/Servant family. I have been reading a lot about it, but I have not
  191. seen a release copy. The other day, however, I was logged on to a BBS in
  192. New York ( The Laser Board ) and guess what was posted ---- Juggler 1.0D.
  193. When I tried to download it, I was given a message that said "file has been
  194. removed." To the best of my knowledge, a developers version has not been
  195. released but I could be wrong. So, what I would like to know is if Apple
  196. has actually released a copy of Juggler (1.0D) or are the people running the
  197. Laser Board playing some kind of game ?
  198.  
  199.   Thanks for any answers.
  200.  
  201. Mike Bell
  202. Bell@ENIAC.SEAS.UPENN.EDU
  203.  
  204. ------------------------------
  205.  
  206. Date: Sat, 6 Jun 87 22:54:27 PDT
  207. From: oster%dewey.SOE.Berkeley.EDU@BERKELEY.EDU (David Phillip Oster)
  208. Subject: menu maze: public domain puzzle, with source, using
  209. Subject: hierarchical menus
  210.  
  211. MenuMaze.c by David Oster and Matthew Grayson
  212. June 6, 1987
  213. Synopsis: This program is an example of how to write hierarchical menus
  214. and why you should't. Hierarchical menus are a feature in the ROMs of the
  215. Macintosh SE and the Mac II. They are available to mere mortals who are
  216. using Apple's System 4.1 system software and who have the 128K ROMs:
  217. People who have either a MacPlus or a 512K Mac, Enhanced.
  218.  
  219. This program compiles under LightSpeed C version 2.01.
  220. This program may be freely redistributed. It is hereby placed in the
  221. public domain. So There.
  222.  
  223. Menu Maze is a game: Lost somewhere in the maze of menus is one "Quit"
  224. command. If you can find it, you can escape from Menu Maze.
  225.  
  226. What you have here is a .hqx file. convert with BinHex 4.0, or equivalent,
  227. to a .Pit file. Convert that with PackIt II, or equivalent, to the program
  228. "Menu Maze" and the two source code files "MenuMaze.c" and "MenuMaze.R".
  229.     David Phillip Oster            --My Good News: "I'm a perfectionist."
  230. Arpa: oster@dewey.soe.berkeley.edu --
  231. Uucp: ucbvax!dewey.soe!oster       --My Bad News: "I don't charge by the hour."
  232.  
  233. [
  234. archived as [SUMEX-AIM.Stanford.EDU]<INFO-MAC>GAME-MENU-MAZE.HQX
  235.  
  236. DoD
  237. ]
  238.  
  239. ------------------------------
  240.  
  241. Date: Fri, 5 Jun 87 16:26:04 CDT
  242. From: brian@sally.utexas.edu (Brian H. Powell)
  243. Subject: paintps.shar update for LaserWriter 4.0
  244.  
  245.      Here's the update to make maclaser (part of UNIX-PAINTPS.SHAR that
  246. was posted a couple of months ago) work with the latest LaserWriter
  247. software.
  248.  
  249. Brian H. Powell
  250. UUCP:   {ihnp4,seismo,ctvax}!ut-sally!brian
  251. ARPA:   brian@sally.UTEXAS.EDU
  252.  
  253.    _Work_                                        _Not Work_
  254.   Department of Computer Sciences               P.O. Box 5899
  255.   Taylor Hall 2.124                             Austin, TX 78763-5899
  256.   The University of Texas at Austin             (512) 346-0835
  257.   Austin, TX 78712-1188
  258.   (512) 471-9536
  259.  
  260. [
  261. archived as
  262. [SUMEX-AIM.Stanford.EDU]<INFO-MAC>UNIX-PAINTPS-LASER40-UPDATE.SHAR
  263.  
  264. DoD
  265. ]
  266.  
  267. ------------------------------
  268.  
  269. Date: Wed, 03 Jun 87 09:31:05 ECT
  270. From: LASSE%NORUNIT.BITNET@wiscvm.wisc.edu
  271.  
  272. Subject: TOPS-BOOT-Problem
  273.  
  274. Just dowloaded this nice utility for publishing disc-volumes on Tops at Boot
  275. time. The documentation states that it is possible to modify the 'PNT#'
  276. resource to change the behaviour. This is OK, but it seems that only 3 mouse
  277. down events are posted now matter how many coordinates that is given in 'PNT#'
  278. Could the author (or somebody else) give me some advice how to modify. (Or
  279. better post a new version with this problem fixed) the utility.
  280.    Thanks in advance :-)
  281.  
  282. ------------------------------
  283.  
  284. Date: 7 Jun 87 18:18:00 EDT
  285. From: <hamm@biovax.rutgers.edu>
  286. Subject: re:  Any biologists out there?
  287.  
  288. Priscilla Baybutt of MIT writes:
  289.  
  290. > There is an graduate student in Biology here at the Whitehead Institute
  291. > for Biomedical Research who is interested in interfacing a digitizer
  292. > with a Macintosh for the purpose of studying DNA sequence gels.
  293.  
  294. > Does anyone on the net know of such a program?  This could be
  295. > commercial, share- or freeware.  Any and all responses would be
  296. > extremely welcome.
  297.  
  298. I've answered this directly in order to avoid boring the net with very
  299. specific information.  If anyone else needs this, message me directly,
  300. and I'll send the info along.
  301.  
  302. Greg H. Hamm                              || Phone:  (201)932-4864
  303. Director, Molecular Biology Computing Lab ||
  304. Waksman Institute/NJ CABM                 || BITNET: hamm@biovax
  305. P.O. Box 759, Rutgers University          || ARPA:   hamm@biovax.rutgers.edu
  306. Piscataway, NJ 08854 * USA                ||
  307.  
  308. ------------------------------
  309.  
  310. Date: 6 Jun 1987 1330-PDT (Saturday)
  311. From: Jon Udell <udell@shasta.stanford.edu>
  312. Subject: Re: Boxes in word3.0
  313.  
  314. To place text next to boxes in Word 3.0, place the text in a separate
  315. paragraph and use the side-by-side paragraph feature.  This allows the
  316. use of the box paragraph feature to create the box, so you don't have
  317. to worry about the vertical lines not lining up.  It won't be WSYWIG on
  318. the screen, but it should look ok during a page preview.
  319.  
  320. Jon
  321.  
  322. ------------------------------
  323.  
  324. Date: 7 Jun 87 17:52:00 EDT
  325. From: <hamm@biovax.rutgers.edu>
  326. Subject: re: XP40 noises
  327.  
  328. Joe Kennebec (GFJAK@ALASKA) writes about his XP40 sounding like it's torturing
  329. mice, and solicits other experience.
  330.  
  331. I'm also extremely happy with the performance of my XP40.  It is is indeed
  332. a bit loud when it reads/writes (though mine sounds more like a dry rustle
  333. than the described "little brick").  When it's just idling, I don't think
  334. it's much louder than any other drive I've heard - just some background
  335. metallic white noise.
  336.  
  337. The only worrisome sounds I've heard occur (1) when it's coasting to a stop
  338. after power off, there seems to be a critical speed where it emits a
  339. high-pitched squeal for a second or two;  and (2) when I get a system bomb,
  340. and my mac does a catastrophic reboot, the drive sort of groans, as if it
  341. were really annoyed to have to do this.  (Sorry, but that's the best
  342. description I can give.)
  343.  
  344. I've had the drive for about 4 months.  It has made these noises from day
  345. 1, and since no problem has ever resulted, I decided they must be "normal".
  346. I hope this is correct;  I love the drive.
  347.  
  348. Greg H. Hamm                              || Phone:  (201)932-4864
  349. Director, Molecular Biology Computing Lab ||
  350. Waksman Institute/NJ CABM                 || BITNET: hamm@biovax
  351. P.O. Box 759, Rutgers University          || ARPA:   hamm@biovax.rutgers.edu
  352. Piscataway, NJ 08854 * USA                ||
  353.  
  354. ------------------------------
  355.  
  356. Date: 5 Jun 87 15:54:07 GMT
  357. From: jww@sdcsvax.ucsd.edu (Joel West)
  358. Subject: Sys 4.1 and Hyperdrive (V5 #98)
  359.  
  360. Apple should not take the rap for the Hyperdrive problems, nor particularly
  361. GCC's delays in fixing them.  Apply West's rule #1
  362.  
  363.   If a dealer, developer, vendor complainer about something 'Apple did',
  364.   did this also affect their competitors?  If no, PERHAPS it's the
  365.   complainer's fault, such as by ignoring Apple's compatibility
  366.   guidelines or cutting corners or just being sloppy.
  367.  
  368. In the case of System 4.1, yes, Apple made major changes and released
  369. pre-release versions early this year and final 4.1 in May, so GCC
  370. didn't have much time before the complaints started rolling in.
  371. But why does this affect the Hyperdrive more than other internal hard disks?
  372.  
  373. A Hyperdrive uses 26,770 bytes in the System Heap for its trap patches.
  374. (plus another 40K if you enable disk caching)  I believe this is the
  375. only major program out there that changes the size of the System Heap,
  376. something Apple discouraged developers from doing.  Other hard disks
  377. tend to use their own PROM (SuperMac, Levco) or some other fix.
  378.  
  379. Until recently, the size and location of the heap was fairly
  380. constant.  However, with 4.1 Apple grew the heap to allow for its own
  381. trap patches and, in the future, the heap can change in size dynamically.
  382.  
  383. Incidentally, if you own a Mac 512, Apple recommends you use
  384. System 3.2 and Finder 5.3; or 3.3/5.4 if you have AppleShare.
  385. 4.0/5.4 is discouraged for the 512Ke/Plus (which prefer 3.2 and
  386. 4.1, respectively), but not recommended for the 512 at all.
  387.  
  388. Joel West
  389. {ucbvax,ihnp4}!sdcsvax!jww      (ihnp4!gould9!joel if I ever fix news)
  390. jww@sdcsvax.ucsd.edu    if you must
  391.  
  392. ------------------------------
  393.  
  394. Date: Wed, 3 Jun 87 13:12:41 PDT
  395. From: digiorgi@Jpl-VLSI.ARPA
  396. Subject: Mac II Benchmarks?
  397.  
  398. Has anyone seen the Lin Pack (of Argon Nat'l Labs) benchmarks run on a Mac II
  399. yet, via Absoft Fortran?  I have a structural analyst who needs such figures
  400. to justify a proposal.
  401.  
  402. thanks,
  403. Godfrey DiGiorgi
  404. digiorgi@jpl-vlsi
  405. 03Jun87
  406.  
  407. High Density Data Transfer: a boxcar of Compact Disks.
  408.  
  409. ------------------------------
  410.  
  411. Date: Tue, 2 Jun 87 21:48:10 EDT
  412. From: Robert_H._Voelker@ub.cc.umich.edu
  413. Subject: Tektronix T4010 plots to PostScript
  414.  
  415.   Does anyone know of commercial or public domain MacIntosh software
  416. that will convert plot files in the Tektronix T4010 (or T4014, etc.)
  417. command format into PostScript files?
  418.  
  419. I can be reached by this net or US Mail.
  420.  
  421. Thank you,
  422.  
  423. Robert H. Voelker
  424. Solid-State Electronics Laboratory
  425. EECS Building
  426. The University of Michigan
  427. Ann Arbor, Michigan 48109-2122 USA
  428.  
  429. ------------------------------
  430.  
  431. Date: Thu, 4 Jun 87 23:58:54 EDT
  432. From: dms@hermes.ai.mit.edu (David M. Siegel)
  433. Subject: hard disks on Mac
  434.  
  435. Has anyone hooked up an off-the-shelf"scuzzy" disk to a Mac? That is, a
  436. disk that hasn't been packaged for use with a Mac. I guess what I'm looking
  437. for is some software that will drive random disk of different sizes.
  438.  
  439. Thanks,
  440. Dave
  441.  
  442. ------------------------------
  443.  
  444. Date: Sat, 6 Jun 87 13:45 ADT
  445. From: <GFJAK%ALASKA.BITNET@forsythe.stanford.edu>
  446. Subject: PageMaker 2.0 (oh yes...)
  447.  
  448. I've been using PageMaker 10-hours a day for almost two years now;
  449. version 2.0 for 16 hours a day for about a month. I use PageMaker in
  450. two classes that I teach, and I consider myself an unofficial
  451. testing/destruction site for page layout software. I put together
  452. documentation, publications, catalogs, fliers, posters, mailers,
  453. certificates, etc for the Community college and everybody else they
  454. care to lend my services to.
  455.  
  456. I'd like to hear from others who are using PageMaker 2.0, especially
  457. those having problems. Aldus Inc is almost impossible to reach through
  458. their Tech Support line (they have good support but are literally swamped
  459. with calls). I think I can lend most a hand, and I have plenty of
  460. questions to ask those I couldn't help...
  461.  
  462. I will be posting comments about the PageMaker vs Ready-Set-Go miasma, and
  463. some "power users" tips about what the manual doesn't mention in the next
  464. few days. I would appreciate feedback; public discussion on the net would
  465. thrill me to death but I will summarize those comments sent directly to
  466. me.
  467.  
  468. Write on.
  469.  
  470. Joe at University of Alaska/Tanana Valley Community College
  471.  
  472.  N   C    L    Y             STANDARD DISCLAIMER 11-76: If the Administration
  473.   O   U    O    E                knew this network existed, they would cut
  474.        T    G    T                     it's budget, too.        Joe
  475.         E    O
  476.  
  477. Thats GFJAK@ALASKA to you netters....
  478.  
  479. ------------------------------
  480.  
  481. Date: 2 June 1987, 11:43:03 PST
  482. From: David M. Gelphman         415-854-3300 x2538   DAVEG    at
  483. From: SLACVM
  484. Subject: demo of SuitCase and PowerStation
  485.  
  486. Last night at the Stanford Macintosh users group we were fortunate
  487. to have Steve Brecher show us his newest Macintosh programs which
  488. are about to be released. Both of them were quite impressive but to
  489. me the most appealing product is Suitcase.
  490.  
  491. Suitcase is an INIT and DA which together provide extended support
  492. for Desk Accessories, Fonts, and Fkeys way beyond that provided by the
  493. current Apple system software. Basically you create a DA (suitcase)
  494. file with the Font/DA mover which contains the desk accessories you
  495. wish to have available. No need to add them to the system file, just
  496. create a  suitcase file. Similarly add fonts to a font file and
  497. Fkeys to an Fkey file. These files are then put into a magic
  498. folder in the system folder and Suitcase opens these on system startup.
  499. The fonts, DAs, and Fkeys are available as if they were in the
  500. system file. The good news is that the Apple restrictions on 15 DAs
  501. disappears with this setup.
  502.  
  503. There is much more. Since not too many people want to scroll through a
  504. list of 150 DAs (Steve said there was one beta tester who was using
  505. about this many) there is a simple and effective way to select the
  506. DA you wish. Basically one selects the SuitCase DA (command key
  507. equivalents are available), and you are presented with a scrolling
  508. list of DAs (with scroll bars). The standard SFGetFile key equivalent
  509. tricks are supported so you can type the first few letters of the
  510. DA name to go right to it.
  511.  
  512. One can also open new files of Fonts, DAs, etc. once the system has
  513. started up so Suitcase is a Fantastic Other... DA as well as font
  514. sampler, etc.
  515.  
  516. Suitcase looks quite well thought out and based on previous work Steve
  517. Brecher has done,  we can expect a solid implementation.
  518. It is expected to be released about July 1st. Steve said a fully functional
  519. version will be posted to the nets. The only difference between the
  520. commercial version ($59.95 list) and the one posted to the net will be
  521. an AD which will appear frequently as you use the free version.
  522.  
  523.  
  524. Steve also presented PowerStation which is a very powerful Mini-Finder
  525. substitute. Powerstation is intended to make it very simple to launch
  526. applications (and DAs) without the hassle of dealing with the Mac
  527. file system and folder structure. One can create very smart buttons
  528. which allow you to easily configure and launch an application with
  529. a default document of your choosing, or any document regardless
  530. of the folder, and print any document(s) regardless of the folders the
  531. documents are in. There is far more to this program
  532. than I have the time to describe here (perhaps someone with more energy
  533. can tell more) but suffice it to say it looks extremely useful.
  534.  
  535. I spent more time discussing SuitCase since I personally was more
  536. interested in the functionality it has to offer and it probably has
  537. a longer shelf life depending what moves Apple makes with the Finder
  538. in the future.
  539.  
  540. Looks like a GREAT JOB on both products Steve!
  541.  
  542. David Gelphman                  BITNET address: DAVEG@SLACVM
  543. Bin #88 SLAC                    ARPANET address:  DAVEG@SLACVM.BITNET
  544. Stanford, Calif. 94305          UUCP address: ...psuvax1!daveg%slacvm.bitnet
  545. 415-854-3300 x2538              GEnie:   D.Gelphman
  546. usual disclaimer #432 applies: my employer apologizes for the fact
  547. that I have access to this net.
  548.  
  549. ------------------------------
  550.  
  551. Date: Tue, 2 Jun 87 11:25 EDT
  552. From: Jeffrey Shulman <SHULMAN%sdr.slb.com@RELAY.CS.NET>
  553. Subject: Usenet Mac Digest V3 #42
  554.  
  555. Usenet Mac Digest     Monday, June 1, 1987           Volume 3 : Issue 42
  556.  
  557. Today's Topics:
  558.      Microsoft Word V3.0 and its menu bar...
  559.      Re: SE Power Supply (Europe -- U.S.)
  560.      Re: Broken compilers
  561.      Re: SE Power Supply (Europe -- U.S.)
  562.      Re: Equations?
  563.      AlisaTalk and Symbiotics Disk Servers? (2 messages)
  564.      Re: Jasmine Disk Drives
  565.      Patching the volume level in codes.
  566.      Teaching music on the Mac
  567.      Re: Equations?
  568.      WriteNow - need help w/Headers
  569.      How do you prevent Switch-Launch?
  570.      Re: Mac Ethernet products?
  571.      RamSnap by Dove Computer
  572.      Results of the 2400 Baud Modem Responses
  573.      Need VT220 terminal emulator
  574.      Can windows overlap the menu bar?
  575.      MacNifty for the Plus/SE ?
  576.      24 pin postscript preview devices
  577.      Re: Mac SE power
  578.      Re: Disk format interchangeability.
  579.      Re: MIDI interfaces (Mac+ & SE)
  580.      MacHack West, Sept. 23-25, 1987
  581.      Recovering Word 3.0 files
  582.  
  583. [
  584. archived as [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV3-42.ARC
  585.  
  586. DoD
  587. ]
  588.  
  589. ------------------------------
  590.  
  591. Date: Tue, 2 Jun 87 11:26 EDT
  592. From: Jeffrey Shulman <SHULMAN%sdr.slb.com@RELAY.CS.NET>
  593. Subject: Usenet Mac Digest V3 #43
  594.  
  595. Usenet Mac Digest     Monday, June 1, 1987           Volume 3 : Issue 43
  596.  
  597. Today's Topics:
  598.      Re: annoying bug in Lightspeed Pascal when used with Switcher
  599.      File info help ?
  600.      Re: Transparency film for the Apple LaserWriter
  601.      Using a NEC MultiSync with Mac II
  602.      Re: Broken compilers
  603.      System 4.1 question.
  604.      Re: Partial list of Math packages
  605.      Re: Keyboard problems
  606.      SE Power Supply (Europe -- U.S.)
  607.      Re: Using a NEC MultiSync with Mac II
  608.      Re: SE Power Supply (Europe -- U.S.)
  609.      Finder 5.5 problem?
  610.      Re: APL.68000 information request (also for PClones)
  611.      s-records
  612.      Font ID number listing
  613.      Re: A/UX availability?
  614.      Picture Files ("CLIPART") Software Needed
  615.      SYSTEM 4.1 (15 meg sys file!)
  616.      4.1 incompatabilities
  617.      FzzPlot Requests....
  618.      'AutoCursor' crashes System 4.1/Finder 5.5
  619.  
  620. [
  621. archived as [SUMEX-AIM.Stanford.EDU]<INFO-MAC>USENETV3-43.ARC
  622.  
  623. DoD
  624. ]
  625.  
  626. ------------------------------
  627.  
  628. End of INFO-MAC Digest
  629. **********************
  630.